home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------------------------*/
- /* */
- /* hcnInit - This REXX Macro is called when the report is first called */
- /* This is where you can set up your Header and such */
- /* */
- /* Valid Variables are: */
- /* hcReportName hcReportDescription hcServerURL */
- /* hcServerRoot hcDocumentRoot hcTopHTML */
- /* */
- /* */
- /*---------------------------------------------------------------------------*/
-
- Call RxhcLineOut COPIES('-', 78)
- title = 'Report -' hcReportDescription
- extra = 58 - LENGTH(title)
- Call RxhcLineOut title || COPIES(' ', extra) || Date() || ' ' || Time()
- Call RxhcLineOut 'For Server [' || hcServerURL || ']'
- Call RxhcLineOut 'This report started from [' || hcDocumentRoot || ']'
- Call RxhcLineOut COPIES('-', 78)
- Call RxhcLineOut 'This report will show files that are on the server BUT are '
- Call RxhcLineOut 'NOT referenced by an HTML file'
- Call RxhcLineOut COPIES('-', 78)
-
- RETURN